home *** CD-ROM | disk | FTP | other *** search
- package asp.wizard;
-
- class ResultSetColumnInfo {
- private String _tableName;
- private String _columnName;
- private int _columnType;
-
- public String getTableName() {
- return this._tableName;
- }
-
- public void setTableName(String tableName) {
- this._tableName = tableName;
- }
-
- public String getColumnName() {
- return this._columnName;
- }
-
- public void setColumnName(String columnName) {
- this._columnName = columnName;
- }
-
- public int getColumnType() {
- return this._columnType;
- }
-
- public void setColumnType(int columnType) {
- this._columnType = columnType;
- }
- }
-